home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $PROJECT: HyperText-DataType-System
- **
- ** $VER: http.rexx 40.2 (27.10.96)
- **
- ** $AUTHOR: Stefan Ruppert , Windthorststrasse 5 , 65439 Floersheim , GERMANY
- **
- ** $COPYRIGHT: (C) Copyright 1996 by Stefan Ruppert, All Rights Reserved!
- **
- ** $EMAIL: Stefan.Ruppert@informatik.fh-wiesbaden.de
- **
- ** $HISTORY:
- **
- ** 27.10.96 : 040.002 : use rexxdossupport.library
- ** 26.10.96 : 040.001 : initial
- **
- */
-
- Options Results
-
- Parse Arg args
-
- /* --------------------------- needed libraries --------------------------- */
-
- Call AddLib('rexxsupport.library',0,-30,0)
- Call AddLib('rexxdossupport.library',0,-30,0)
-
- If ReadArgs(args,'URL/A','HTTP.') Then Do
-
- /* ------------------------ customize section -------------------------- */
-
- /* AWeb */
- browser = 'System:Communication/AWeb/Aweb'
- arexxport = 'AWEB.1'
- loadurlcmd = 'OPEN URL="' || http.url || '"'
-
- /* ---------------------- end customize section ------------------------ */
-
- If ~Show('ports',arexxport) Then Do
- Address Command
-
- 'Run <>NIL: ' || browser
-
- 'WaitForPort ' || arexxport
- End
-
- Address arexxport
-
- loadurlcmd
- End
-
-